Add utility functions for portal paths
authorMatthias Clasen <mclasen@redhat.com>
Thu, 30 Aug 2018 17:05:55 +0000 (13:05 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 31 Aug 2018 03:10:13 +0000 (23:10 -0400)
The paths that we create for requests and sessions
need some icky code to create. Keep it in one place.

gtk/gtkprivate.c
gtk/gtkprivate.h

index 02448d7f92a1445947e5180da1e33e78cc9afb1b..6428347f04a49bd723287999fd63c09cf8253df0 100644 (file)
@@ -291,3 +291,39 @@ gtk_should_use_portal (void)
 
   return use_portal[0] == '1';
 }
+
+static char *
+get_portal_path (GDBusConnection  *connection,
+                 const char       *kind,
+                 char            **token)
+{
+  char *sender;
+  int i;
+  char *path;
+
+  *token = g_strdup_printf ("gtk%d", g_random_int_range (0, G_MAXINT));
+  sender = g_strdup (g_dbus_connection_get_unique_name (connection) + 1);
+  for (i = 0; sender[i]; i++)
+    if (sender[i] == '.')
+      sender[i] = '_';
+
+  path = g_strconcat ("/org/freedesktop/portal/desktop", "/", kind, "/", sender, "/", token, NULL);
+
+  g_free (sender);
+
+  return path;
+}
+
+char *
+gtk_get_portal_request_path (GDBusConnection  *connection,
+                             char            **token)
+{
+   return get_portal_path (connection, "request", token);
+}
+
+char *
+gtk_get_portal_session_path (GDBusConnection  *connection,
+                             char            **token)
+{
+   return get_portal_path (connection, "session", token);
+}
index af130cd3f01e7b46a13c97c8a4434381de65bdbc..af7e58b5e98287f8e2d0cef19e9440694857da71 100644 (file)
@@ -96,6 +96,10 @@ gdouble _gtk_get_slowdown ();
 void    _gtk_set_slowdown (gdouble slowdown_factor);
 
 gboolean gtk_should_use_portal (void);
+char *gtk_get_portal_request_path (GDBusConnection  *connection,
+                                   char            **token);
+char *gtk_get_portal_session_path (GDBusConnection  *connection,
+                                   char            **token);
 
 #ifdef G_OS_WIN32
 void _gtk_load_dll_with_libgtk3_manifest (const char *dllname);